type golang.org/x/tools/internal/event/keys.UInt32

9 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L327: type UInt32 struct {
		keys.go#L333: func NewUInt32(name, description string) *UInt32 {
		keys.go#L334: 	return &UInt32{name: name, description: description}
		keys.go#L337: func (k *UInt32) Name() string        { return k.name }
		keys.go#L338: func (k *UInt32) Description() string { return k.description }
		keys.go#L340: func (k *UInt32) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L345: func (k *UInt32) Of(v uint32) label.Label { return label.Of64(k, uint64(v)) }
		keys.go#L348: func (k *UInt32) Get(lm label.Map) uint32 {
		keys.go#L356: func (k *UInt32) From(t label.Label) uint32 { return uint32(t.Unpack64()) }